home *** CD-ROM | disk | FTP | other *** search
/ Wild Blue Yonder 1: 50 Years of Gs & Jets / Wild Blue Yonder - Episode 1 - 50 Years of Gs and Jets (Digital Ranch) (Spectrum Holobyte)(1-107-40-101)(1994).iso / control / panel.dir / 00719_Script_valid < prev    next >
Text File  |  1994-08-29  |  338b  |  17 lines

  1. -- bug fix handler
  2.  
  3. on valid aspectLabel
  4.   
  5.   global aspectStartCast, numOfAspLabels, oneRow
  6.   
  7.   repeat with i = 1 to numOfAspLabels
  8.     if (the castNum of sprite aspectLabel) = ¼
  9.                      aspectStartCast + (i * oneRow) then
  10.       return TRUE
  11.       exit
  12.     end if
  13.   end repeat
  14.   
  15.   return FALSE
  16.   
  17. end valid